home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MSO2K FindFast 1.xpl < prev    next >
Text File  |  2000-07-27  |  2KB  |  69 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Microsoft Office\MS Office 2000\Common"
  5. "NAME"="FindFast Delay"
  6. "VERSION"="1.05"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Delay (sec):"
  9. "DESCRIPTION 1"="This plug-in allows you to change the interval how long FindFast should wait between each file to be indexed."
  10. "DESCRIPTION 2"="For example, if you enter "1", FindFast will wait 1 seconds between each document (slow system performance but fast indexing)."
  11. "DESCRIPTION 3"="If you enter the maximum of "10", FindFast will wait 10 seconds between each document (good system performance but slow indexing).
  12. "DESCRIPTION 4"="To restore the original value, clear the field."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  18.  
  19.  
  20. sV1="HKLM\Software\Microsoft\Office\9.0\Find Fast\SlowDown" 'DW
  21. sPCheck="HKCU\Software\Microsoft\Office\9.0\"
  22. Sub Plugin_Initialize 
  23. if RegPathExists(sPCheck) then
  24.    s=RegReadValue(sV1)
  25.    
  26.    If IsEmpty(s)=false then
  27.       If IsNumeric(s) then
  28.          l=s/1000
  29.          Call SetUIElement(1,l)
  30.       end if
  31.    end if
  32.  
  33.    
  34. else
  35.  Call Disable()
  36. end if
  37. End Sub
  38.  
  39. Sub Plugin_CheckData(ElementIndex)
  40. End Sub
  41.  
  42. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  43.  s=GetUIElement(1)
  44.  if len(s)>0 then
  45.     l=s*1000
  46.   
  47.     if l<1000 or l>10000 then
  48.        MsgError "Please enter a value between 1 and 10."
  49.     else
  50.        Call RegWriteValue(sV1,l,2)
  51.        Call Restart()
  52.     end if
  53.  else
  54.     s=RegReadValue(sV1)
  55.     if IsEmpty(s)=false then
  56.        Call RegDeleteValue(sV1)
  57.        Call Restart()
  58.     end if
  59.  end if
  60.  
  61. End Sub
  62.  
  63.  
  64. Sub Plugin_Terminate 
  65. End Sub
  66.  
  67.  
  68.  
  69.